HTML | DOM Video preload Property Supported Browsers

The browser supported by HTML | DOM Video preload Property are listed below: 
 

  • Google Chrome 3
  • Edge 12
  • Internet Explorer 9
  • Firefox 4
  • Opera
  • Apple Safari 3.1
     


HTML | DOM Video preload Property

The Video preload property in HTML’s Document Object Model (DOM) specifies whether a video should be loaded when the page loads. It accepts values like auto, metadata, and none to control preloading behavior.

The video preload attribute allows the author to portray to the browser the way the user experience of a website should be implemented.

Table of Content

  • Video preload property Values: 
  • Video preload property Return Value : 
  • Video preload Property Use Cases
  • Video preload Property Supported Browsers:

Video preload property Syntax: 

  • Return the preload property: 
     
videoObject.preload
  • Set the preload property: 
     
videoObject.preload = "auto|metadata|none"

Similar Reads

Video preload property Values:

auto :It is used to specify that the browser should load the entire video when the page loads.metadata :It is used to specify that the browser should load only metadata when the page loads.none :It is used to specify that the browser should NOT load the video when the page loads....

Video preload property Return Value :

It returns a  string value, that represents what data should be preloaded (if any). Possible return values are “auto”, “metadata”, or “none”. See “Property Values” for what the values mean...

HTML | DOM Video preload Property Use Cases

1. How to preload the video when the page loads in HTML5 ?...

HTML | DOM Video preload Property Supported Browsers:

The browser supported by HTML | DOM Video preload Property are listed below:...